net/http.http2Setting.Val (field)
30 uses
net/http (current package)
h2_bundle.go#L2173: return s.Val, true
h2_bundle.go#L2185: Val: binary.BigEndian.Uint32(buf[i*6+2 : i*6+6]),
h2_bundle.go#L2243: f.writeUint32(s.Val)
h2_bundle.go#L3069: fmt.Fprintf(&buf, " %v=%v,", s.ID, s.Val)
h2_bundle.go#L3433: Val uint32
h2_bundle.go#L3437: return fmt.Sprintf("[%v = %d]", s.ID, s.Val)
h2_bundle.go#L3445: if s.Val != 1 && s.Val != 0 {
h2_bundle.go#L3449: if s.Val > 1<<31-1 {
h2_bundle.go#L3453: if s.Val < 16384 || s.Val > 1<<24-1 {
h2_bundle.go#L5584: sc.hpackEncoder.SetMaxDynamicTableSize(s.Val)
h2_bundle.go#L5586: sc.pushEnabled = s.Val != 0
h2_bundle.go#L5588: sc.clientMaxStreams = s.Val
h2_bundle.go#L5590: return sc.processSettingInitialWindowSize(s.Val)
h2_bundle.go#L5592: sc.maxFrameSize = int32(s.Val) // the maximum valid s.Val is < 2^31
h2_bundle.go#L5594: sc.peerMaxHeaderListSize = s.Val
h2_bundle.go#L7977: {ID: http2SettingEnablePush, Val: 0},
h2_bundle.go#L7978: {ID: http2SettingInitialWindowSize, Val: http2transportDefaultStreamFlow},
h2_bundle.go#L7981: initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: max})
h2_bundle.go#L7984: initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxHeaderListSize, Val: max})
h2_bundle.go#L7987: initialSettings = append(initialSettings, http2Setting{ID: http2SettingHeaderTableSize, Val: maxHeaderTableSize})
h2_bundle.go#L10069: cc.maxFrameSize = s.Val
h2_bundle.go#L10071: cc.maxConcurrentStreams = s.Val
h2_bundle.go#L10074: cc.peerMaxHeaderListSize = uint64(s.Val)
h2_bundle.go#L10080: if s.Val > math.MaxInt32 {
h2_bundle.go#L10087: delta := int32(s.Val) - int32(cc.initialWindowSize)
h2_bundle.go#L10093: cc.initialWindowSize = s.Val
h2_bundle.go#L10095: cc.henc.SetMaxDynamicTableSize(s.Val)
h2_bundle.go#L10096: cc.peerMaxHeaderTableSize = s.Val
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |